const github.com/klauspost/compress/flate.maxStoreBlockSize
16 uses
github.com/klauspost/compress/flate (current package)
deflate.go#L47: maxStoreBlockSize = 65535
deflate.go#L705: if d.windowEnd > 0 && (d.windowEnd == maxStoreBlockSize || d.sync) {
deflate.go#L813: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L827: d.window = make([]byte, maxStoreBlockSize)
deflate.go#L839: d.fast = &fastEncL5Window{maxOffset: int32(-level), cur: maxStoreBlockSize}
deflate.go#L840: d.window = make([]byte, maxStoreBlockSize)
fast_encoder.go#L21: return &fastEncL1{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L23: return &fastEncL2{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L25: return &fastEncL3{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L27: return &fastEncL4{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L29: return &fastEncL5{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L31: return &fastEncL6{fastGen: fastGen{cur: maxStoreBlockSize}}
fast_encoder.go#L47: allocHistory = maxStoreBlockSize * 5 // Size to preallocate for history.
fast_encoder.go#L48: bufferReset = (1 << 31) - allocHistory - maxStoreBlockSize - 1 // Reset the buffer offset when reaching this.
huffman_bit_writer.go#L418: if len(in) <= maxStoreBlockSize {
token.go#L136: tokens [maxStoreBlockSize + 1]token
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |